View on GitHub
View on GitHub

FluxBase

Provides core types and functionality to implement applications using Flux architecture with .NET.

FluxBase / Store / Handle(object) Method

Handles the provided action.

This is a public virtual method.

public virtual void Handle(object action)

Parameters

Remarks

The default implementation maps all public methods with one parameter that return void and picks the method whose parameter is closest to the actual type of the provided action.

If there is a method accepting the same actual type of the provided action then that method is called, otherwise the method with the most sepcific base class (i.e.: the closest base type in the inheritance chain) is called, if one can be found.

See Also